Builder

class Builder

A builder of FindOptions.

Builders are created by invoking newBuilder. Each of the setter methods modifies the state of the builder and returns the same instance. Builders are not thread-safe and should not be used concurrently from multiple threads without external synchronization.

Functions

Link copied to clipboard
open fun build(): FindOptions
Returns a new FindOptions instance built from the current state of this builder.
Link copied to clipboard
open fun matchCase(matchCase: Boolean): FindOptions.Builder
Specifies whether the search is case-sensitive.
Link copied to clipboard
open fun searchBackward(searchBackward: Boolean): FindOptions.Builder
Specifies whether the search is performed backward.